home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strcmp.c,v < prev    next >
Text File  |  1992-03-27  |  2KB  |  131 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     92.03.27.13.29.58;  author rab;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     89.03.22.16.06.45;  author rab;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.04.25.13.25.44;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @A few little optimizations.
  32. @
  33. text
  34. @/* 
  35.  * strcmp.c --
  36.  *
  37.  *    Source code for the "strcmp" library routine.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strcmp.c,v 1.2 89/03/22 16:06:45 rab Exp Locker: rab $ SPRITE (Berkeley)";
  51. #endif /* not lint */
  52.  
  53. #include <string.h>
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * strcmp --
  59.  *
  60.  *    Compare two strings lexicographically.
  61.  *
  62.  * Results:
  63.  *    The return value is 0 if the strings are identical, 1
  64.  *    if the first string is greater than the second, and 
  65.  *    -1 if the first string is less than the second.  If one
  66.  *    string is a prefix of the other then it is considered
  67.  *    to be less (the terminating zero byte participates in the
  68.  *    comparison).
  69.  *
  70.  * Side effects:
  71.  *    None.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75.  
  76. int
  77. strcmp(s1, s2)
  78.     register char *s1, *s2;        /* Strings to compare. */
  79. {
  80.     int c1, c2;
  81.  
  82.     while (1) {
  83.     c1 = *s1++;
  84.     c2 = *s2++;
  85.     if (c1 != c2) {
  86.         return c1 - c2;
  87.     }
  88.     if (c1 == 0) {
  89.         return 0;
  90.     }
  91.     }
  92. }
  93. @
  94.  
  95.  
  96. 1.2
  97. log
  98. @*** empty log message ***
  99. @
  100. text
  101. @d17 1
  102. a17 1
  103. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strcmp.c,v 1.1 88/04/25 13:25:44 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  104. d47 2
  105. d50 4
  106. a53 6
  107.     if (*s1 != *s2) {
  108.         if (*s1 > *s2) {
  109.         return 1;
  110.         } else {
  111.         return -1;
  112.         }
  113. d55 1
  114. a55 1
  115.     if (*s1++ == 0) {
  116. a57 1
  117.     s2 += 1;
  118. @
  119.  
  120.  
  121. 1.1
  122. log
  123. @Initial revision
  124. @
  125. text
  126. @d17 4
  127. a20 2
  128. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  129. #endif not lint
  130. @
  131.